home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / gnu / gnumake / make360.zoo / main.c < prev    next >
C/C++ Source or Header  |  1991-08-07  |  34KB  |  1,365 lines

  1. /* Copyright (C) 1988-1991 Free Software Foundation, Inc.
  2. This file is part of GNU Make.
  3.  
  4. GNU Make is free software; you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License as published by
  6. the Free Software Foundation; either version 1, or (at your option)
  7. any later version.
  8.  
  9. GNU Make is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12. GNU General Public License for more details.
  13.  
  14. You should have received a copy of the GNU General Public License
  15. along with GNU Make; see the file COPYING.  If not, write to
  16. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  17.  
  18. #include "make.h"
  19. #include "commands.h"
  20. #include "dep.h"
  21. #include "file.h"
  22. #include "variable.h"
  23. #include "job.h"
  24. #include <ctype.h>
  25. #include <time.h>
  26.  
  27.  
  28. extern char *version_string;
  29.  
  30. extern int fatal_error_signal ();
  31.  
  32. extern struct dep *read_all_makefiles ();
  33.  
  34. extern void print_variable_data_base ();
  35. extern void print_dir_data_base ();
  36. extern void print_rule_data_base ();
  37. extern void print_file_data_base ();
  38. extern void print_vpath_data_base ();
  39.  
  40. #if    !defined(__GNU_LIBRARY__) && !defined(_POSIX_SOURCE)
  41. extern int chdir ();
  42. extern void exit ();
  43. extern time_t time ();
  44. extern double atof ();
  45. #endif
  46. extern char *mktemp ();
  47.  
  48. static void log_working_directory ();
  49. static void print_data_base (), print_version ();
  50. static void decode_switches (), decode_env_switches ();
  51. static void define_makeflags ();
  52.  
  53.  
  54. #if 0 /* dummy tag */
  55. flags () {}
  56. #endif
  57. /* Flags:
  58.  *    -b ignored for compatibility with System V Make
  59.  *    -C change directory
  60.  *    -d debug
  61.  *    -e env_overrides
  62.  *    -f makefile
  63.  *    -i ignore_errors
  64.  *    -j job_slots
  65.  *    -k keep_going
  66.  *    -l max_load_average
  67.  *    -m ignored for compatibility with something or other
  68.  *    -n just_print
  69.  *    -o consider file old
  70.  *    -p print_data_base
  71.  *    -q question
  72.  *    -r no_builtin_rules
  73.  *    -s silent
  74.  *    -S turn off -k
  75.  *    -t touch
  76.  *    -v print version information
  77.  *    -w log working directory
  78.  *    -W consider file new (with -n, `what' if effect)
  79.  */
  80.  
  81. /* The structure that describes an accepted command switch.  */
  82.  
  83. struct command_switch
  84.   {
  85.     char c;        /* The switch character.  */
  86.     enum        /* Type of the value.  */
  87.       {
  88.     flag,        /* Turn int flag on.  */
  89.     flag_off,    /* Turn int flag off.  */
  90.     string,        /* One string per switch, may be in the same word.  */
  91.     positive_int,    /* A positive integer.  */
  92.     floating,    /* A floating-point number (double).  */
  93.     ignore        /* Ignored.  */
  94.       } type;
  95.  
  96.     char *value_ptr;    /* Pointer to the value-holding variable.  */
  97.  
  98.     unsigned int env:1;        /* Can come from MAKEFLAGS.  */
  99.     unsigned int toenv:1;    /* Should be put in MAKEFLAGS.  */
  100.     unsigned int no_makefile:1;    /* Don't propagate when remaking makefiles.  */
  101.  
  102.     char *noarg_value;    /* Pointer to value used if no argument is given.  */
  103.     char *default_value;/* Pointer to default value.  */
  104.   };
  105.  
  106.  
  107. /* The structure used to hold the list of strings given
  108.    in command switches of a type that takes string arguments.  */
  109.  
  110. struct stringlist
  111.   {
  112.     char **list;    /* Nil-terminated list of strings.  */
  113.     unsigned int idx;    /* Index into above.  */
  114.     unsigned int max;    /* Number of pointers allocated.  */
  115.   };
  116.  
  117.  
  118. /* The recognized command switches.  */
  119.  
  120. /* Nonzero means do not print commands to be executed (-s).  */
  121.  
  122. int silent_flag;
  123.  
  124. /* Nonzero means just touch the files
  125.    that would appear to need remaking (-t)  */
  126.  
  127. int touch_flag;
  128.  
  129. /* Nonzero means just print what commands would need to be executed,
  130.    don't actually execute them (-n).  */
  131.  
  132. int just_print_flag;
  133.  
  134. /* Print debugging trace info (-d).  */
  135.  
  136. int debug_flag = 0;
  137.  
  138. /* Environment variables override makefile definitions.  */
  139.  
  140. int env_overrides = 0;
  141.  
  142. /* Nonzero means ignore status codes returned by commands
  143.    executed to remake files.  Just treat them all as successful (-i).  */
  144.  
  145. int ignore_errors_flag = 0;
  146.  
  147. /* Nonzero means don't remake anything, just print the data base
  148.    that results from reading the makefile (-p).  */
  149.  
  150. int print_data_base_flag = 0;
  151.  
  152. /* Nonzero means don't remake anything; just return a nonzero status
  153.    if the specified targets are not up to date (-q).  */
  154.  
  155. int question_flag = 0;
  156.  
  157. /* Nonzero means do not use any of the builtin rules (-r).  */
  158.  
  159. int no_builtin_rules_flag = 0;
  160.  
  161. /* Nonzero means keep going even if remaking some file fails (-k).  */
  162.  
  163. int keep_going_flag;
  164. int default_keep_going_flag = 0;
  165.  
  166. /* Nonzero means print working directory
  167.    before starting and after finishing make. */
  168.  
  169. int print_directory_flag = 0;
  170.  
  171. /* Nonzero means print version information.  */
  172.  
  173. int print_version_flag = 0;
  174.  
  175. /* List of makefiles given with -f switches.  */
  176.  
  177. static struct stringlist *makefiles = 0;
  178.  
  179.  
  180. /* Number of job slots (commands that can be run at once).  */
  181.  
  182. unsigned int job_slots = 1;
  183. unsigned int default_job_slots = 1;
  184.  
  185. /* Value of job_slots that means no limit.  */
  186.  
  187. static unsigned int inf_jobs = 0;
  188.  
  189. /* Maximum load average at which multiple jobs will be run.
  190.    Negative values mean unlimited, while zero means limit to
  191.    zero load (which could be useful to start infinite jobs remotely
  192.    but one at a time locally).  */
  193.  
  194. double max_load_average = -1.0;
  195. double default_load_average = -1.0;
  196.  
  197. /* List of directories given with -c switches.  */
  198.  
  199. static struct stringlist *directories = 0;
  200.  
  201. /* List of include directories given with -I switches.  */
  202.  
  203. static struct stringlist *include_directories = 0;
  204.  
  205. /* List of files given with -o switches.  */
  206.  
  207. static struct stringlist *old_files = 0;
  208.  
  209. /* List of files given with -W switches.  */
  210.  
  211. static struct stringlist *new_files = 0;
  212.  
  213. /* The table of command switches.  */
  214.  
  215. static struct command_switch switches[] =
  216.   {
  217.     { 'b', ignore, 0, 0, 0, 0, 0, 0 },
  218.     { 'C', string, (char *) &directories, 0, 0, 0, 0, 0 },
  219.     { 'd', flag, (char *) &debug_flag, 1, 1, 0, 0, 0 },
  220.     { 'e', flag, (char *) &env_overrides, 1, 1, 0, 0, 0 },
  221.     { 'f', string, (char *) &makefiles, 0, 0, 0, 0, 0 },
  222.     { 'i', flag, (char *) &ignore_errors_flag, 1, 1, 0, 0, 0 },
  223.     { 'I', string, (char *) &include_directories, 0, 0, 0, 0, 0 },
  224.     { 'j', positive_int, (char *) &job_slots, 1, 1, 0,
  225.     (char *) &inf_jobs, (char *) &default_job_slots },
  226.     { 'k', flag, (char *) &keep_going_flag, 1, 1, 0,
  227.     0, (char *) &default_keep_going_flag },
  228.     { 'l', floating, (char *) &max_load_average, 1, 1, 0,
  229.     (char *) &default_load_average, (char *) &default_load_average },
  230.     { 'm', ignore, 0, 0, 0, 0, 0, 0 },
  231.     { 'n', flag, (char *) &just_print_flag, 1, 1, 1, 0, 0 },
  232.     { 'o', string, (char *) &old_files, 0, 0, 0, 0, 0 },
  233.     { 'p', flag, (char *) &print_data_base_flag, 1, 1, 0, 0, 0 },
  234.     { 'q', flag, (char *) &question_flag, 1, 1, 1, 0, 0 },
  235.     { 'r', flag, (char *) &no_builtin_rules_flag, 1, 1, 0, 0, 0 },
  236.     { 's', flag, (char *) &silent_flag, 1, 1, 0, 0, 0 },
  237.     { 'S', flag_off, (char *) &keep_going_flag, 1, 1, 0,
  238.     0, (char *) &default_keep_going_flag },
  239.     { 't', flag, (char *) &touch_flag, 1, 1, 1, 0, 0 },
  240.     { 'v', flag, (char *) &print_version_flag, 0, 0, 0, 0, 0 },
  241.     { 'w', flag, (char *) &print_directory_flag, 1, 1, 0, 0, 0 },
  242.     { 'W', string, (char *) &new_files, 0, 0, 0, 0, 0 },
  243.     { '\0', ignore, 0, 0, 0, 0, 0 }
  244.   };
  245.  
  246. /* List of non-switch arguments.  */
  247.  
  248. struct stringlist *other_args = 0;
  249.  
  250.  
  251. /* The name we were invoked with.  */
  252.  
  253. char *program;
  254.  
  255. /* Value of the MAKELEVEL variable at startup (or 0).  */
  256.  
  257. unsigned int makelevel;
  258.  
  259. /* First file defined in the makefile whose name does not
  260.    start with `.'.  This is the default to remake if the
  261.    command line does not specify.  */
  262.  
  263. struct file *default_goal_file;
  264.  
  265. /* Pointer to structure for the file .DEFAULT
  266.    whose commands are used for any file that has none of its own.
  267.    This is zero if the makefiles do not define .DEFAULT.  */
  268.  
  269. struct file *default_file;
  270.  
  271. /* Mask of signals that are being caught with fatal_error_signal.  */
  272. int fatal_signal_mask;
  273.  
  274. int
  275. main (argc, argv, envp)
  276.      int argc;
  277.      char **argv;
  278.      char **envp;
  279. {
  280. #if    (defined(USG) && !defined(HAVE_SIGLIST)) || defined(DGUX)
  281.   extern void init_siglist ();
  282. #endif
  283.   extern int child_handler ();
  284.   register struct file